//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-04A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Clay Walker & Casey Donahew','Christian County Fairgrounds','Taylorville, IL','Friday','7/18/2025','7:00 PM','7011307','Clay-Walker---Casey-Donahew-7-18-2025'],['Casey Donahew','Mercury Ballroom','Louisville, KY','Saturday','7/19/2025','8:00 PM','7169879','Casey-Donahew-7-19-2025'],['Tequila & Margarita Fest: Casey Donahew','Event Center at Ruidoso Downs','Ruidoso Downs, NM','Saturday','7/26/2025','6:00 PM','7053832','Tequila---Margarita-Fest--Casey-Donahew-7-26-2025'],['Rock The Plains Festival: Randy Rogers Band, Aaron Watson, Casey Donahew & Josh Abbott Band - 2 Day Pass','Tuttle Creek State Park','Manhattan, KS','Friday','8/8/2025','TBD','7147477','Rock-The-Plains-Festival--Randy-Rogers-Band--Aaron-Watson--Casey-Donahew---Josh-Abbott-Band---2-Day-Pass-8-8-2025'],['Rock The Plains Festival: Casey Donahew, Josh Abbott Band & Pat Green - Saturday','Tuttle Creek State Park','Manhattan, KS','Saturday','8/9/2025','2:00 PM','7147479','Rock-The-Plains-Festival--Casey-Donahew--Josh-Abbott-Band---Pat-Green---Saturday-8-9-2025'],['Casey Donahew Band','Grizzly Rose','Denver, CO','Friday','8/22/2025','8:00 PM','7161544','Casey-Donahew-Band-8-22-2025'],['Casey Donahew','Billy Bobs','Fort Worth, TX','Saturday','10/11/2025','8:00 PM','7166548','Casey-Donahew-10-11-2025'],['Casey Donahew','Billy Bobs','Fort Worth, TX','Saturday','10/11/2025','10:00 PM','7177045','Casey-Donahew-10-11-2025'],['Casey Donahew','JJ's Live','Fayetteville, AR','Saturday','11/22/2025','8:00 PM','7221697','Casey-Donahew-11-22-2025']],'"Casey Donahew Band"','https://www.ticketnetwork.com');